473,438 Members | 1,681 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,438 software developers and data experts.

Question: How can I "expire" a web page (prevent BACK button)

I know some sites will display the following message if you click on the
BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available. As a
security precaution, Internet Explorer does not automatically resubmit your
information for you.

To resubmit your information and view this Web page, click the Refresh
button.
Nov 17 '05 #1
12 10140
Response.SetCacheability(nocache enum) roughly

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
I know some sites will display the following message if you click on the
BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.

To resubmit your information and view this Web page, click the Refresh
button.

Nov 17 '05 #2
Thanks. In the Page_Load even I tried both:

Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
and
Response.Cache.SetCacheability(HttpCacheability.No Cache )

But, I can still hit the BACK button and see the page. Ideas?

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:Oc**************@TK2MSFTNGP12.phx.gbl...
Response.SetCacheability(nocache enum) roughly

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
I know some sites will display the following message if you click on the
BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available.
As a
security precaution, Internet Explorer does not automatically resubmit

your
information for you.

To resubmit your information and view this Web page, click the Refresh
button.


Nov 17 '05 #3
could it be caching on a proxy ... in the old asp world we would do the
following:

Response.Expires = -1

Response.AddHeader "Pragma", "No-Cache"

Response.CacheControl = "no-cache"

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e9*************@TK2MSFTNGP10.phx.gbl...
Thanks. In the Page_Load even I tried both:

Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
and
Response.Cache.SetCacheability(HttpCacheability.No Cache )

But, I can still hit the BACK button and see the page. Ideas?

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
message news:Oc**************@TK2MSFTNGP12.phx.gbl...
Response.SetCacheability(nocache enum) roughly

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
I know some sites will display the following message if you click on the BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available.

As
a
security precaution, Internet Explorer does not automatically resubmit

your
information for you.

To resubmit your information and view this Web page, click the Refresh
button.



Nov 17 '05 #4
Thanks. I've tried...

Response.Expires=-1

also...

Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
Response.Cache.SetCacheability(HttpCacheability.No Cache)

It still let's me go "BACK" to the form. Any ideas?

"Dhananjay Modak" <dh*************@newellandbudge.com> wrote in message
news:OZ**************@TK2MSFTNGP11.phx.gbl...
could it be caching on a proxy ... in the old asp world we would do the
following:

Response.Expires = -1

Response.AddHeader "Pragma", "No-Cache"

Response.CacheControl = "no-cache"

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e9*************@TK2MSFTNGP10.phx.gbl...
Thanks. In the Page_Load even I tried both:

Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
and
Response.Cache.SetCacheability(HttpCacheability.No Cache )

But, I can still hit the BACK button and see the page. Ideas?

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in message news:Oc**************@TK2MSFTNGP12.phx.gbl...
Response.SetCacheability(nocache enum) roughly

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
> I know some sites will display the following message if you click on the > BACK button in your browser. How do I implement this feature?
>
> Warning: Page has Expired The page you requested was created using
> information you submitted in a form. This page is no longer available. As
a
> security precaution, Internet Explorer does not automatically

resubmit your
> information for you.
>
> To resubmit your information and view this Web page, click the Refresh > button.
>
>



Nov 17 '05 #5
I know this does basically one way or another what you are going for, but it
should force a refresh to the server.

bill

<meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache" />
"VB Programmer" <gr*********@go-intech.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl...
Thanks. I've tried...

Response.Expires=-1

also...

Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
Response.Cache.SetCacheability(HttpCacheability.No Cache)

It still let's me go "BACK" to the form. Any ideas?

"Dhananjay Modak" <dh*************@newellandbudge.com> wrote in message
news:OZ**************@TK2MSFTNGP11.phx.gbl...
could it be caching on a proxy ... in the old asp world we would do the
following:

Response.Expires = -1

Response.AddHeader "Pragma", "No-Cache"

Response.CacheControl = "no-cache"

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e9*************@TK2MSFTNGP10.phx.gbl...
Thanks. In the Page_Load even I tried both:

Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache) and
Response.Cache.SetCacheability(HttpCacheability.No Cache )

But, I can still hit the BACK button and see the page. Ideas?

"Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> Response.SetCacheability(nocache enum) roughly
>
> "VB Programmer" <gr*********@go-intech.com> wrote in message
> news:e8**************@TK2MSFTNGP10.phx.gbl...
> > I know some sites will display the following message if you click
on
the
> > BACK button in your browser. How do I implement this feature?
> >
> > Warning: Page has Expired The page you requested was created using
> > information you submitted in a form. This page is no longer

available. As
> a
> > security precaution, Internet Explorer does not automatically resubmit > your
> > information for you.
> >
> > To resubmit your information and view this Web page, click the Refresh > > button.
> >
> >
>
>



Nov 17 '05 #6
Thanks.

Tried that also. It didn't work. Any more ideas?

Any links to samples, etc..?

"William F. Robertson, Jr." <wf*********@kpmg.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
I know this does basically one way or another what you are going for, but it should force a refresh to the server.

bill

<meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache" />
"VB Programmer" <gr*********@go-intech.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl...
Thanks. I've tried...

Response.Expires=-1

also...

Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
Response.Cache.SetCacheability(HttpCacheability.No Cache)

It still let's me go "BACK" to the form. Any ideas?

"Dhananjay Modak" <dh*************@newellandbudge.com> wrote in message
news:OZ**************@TK2MSFTNGP11.phx.gbl...
could it be caching on a proxy ... in the old asp world we would do the following:

Response.Expires = -1

Response.AddHeader "Pragma", "No-Cache"

Response.CacheControl = "no-cache"

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e9*************@TK2MSFTNGP10.phx.gbl...
> Thanks. In the Page_Load even I tried both:
>
> Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
> and
> Response.Cache.SetCacheability(HttpCacheability.No Cache )
>
> But, I can still hit the BACK button and see the page. Ideas?
>
> "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote
in
> message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> > Response.SetCacheability(nocache enum) roughly
> >
> > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > news:e8**************@TK2MSFTNGP10.phx.gbl...
> > > I know some sites will display the following message if you
click on the
> > > BACK button in your browser. How do I implement this feature?
> > >
> > > Warning: Page has Expired The page you requested was created

using > > > information you submitted in a form. This page is no longer

available.
> As
> > a
> > > security precaution, Internet Explorer does not automatically

resubmit
> > your
> > > information for you.
> > >
> > > To resubmit your information and view this Web page, click the

Refresh
> > > button.
> > >
> > >
> >
> >
>
>



Nov 17 '05 #7
That page about resubmitting you're talking about does not come from the
server. It is shown by IE and you will see if when you come back to a page
that got form submitted through POST method to it. If you come back to such
a page IE (or any other client for that matter) will not automatically
resubmit the form.

Jerry

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:el**************@tk2msftngp13.phx.gbl...
Thanks.

Tried that also. It didn't work. Any more ideas?

Any links to samples, etc..?

"William F. Robertson, Jr." <wf*********@kpmg.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
I know this does basically one way or another what you are going for, but
it
should force a refresh to the server.

bill

<meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache" />
"VB Programmer" <gr*********@go-intech.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl...
Thanks. I've tried...

Response.Expires=-1

also...

Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
Response.Cache.SetCacheability(HttpCacheability.No Cache)

It still let's me go "BACK" to the form. Any ideas?

"Dhananjay Modak" <dh*************@newellandbudge.com> wrote in message news:OZ**************@TK2MSFTNGP11.phx.gbl...
> could it be caching on a proxy ... in the old asp world we would do

the > following:
>
> Response.Expires = -1
>
> Response.AddHeader "Pragma", "No-Cache"
>
> Response.CacheControl = "no-cache"
>
>
>
> "VB Programmer" <gr*********@go-intech.com> wrote in message
> news:e9*************@TK2MSFTNGP10.phx.gbl...
> > Thanks. In the Page_Load even I tried both:
> >
> >
Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
> > and
> > Response.Cache.SetCacheability(HttpCacheability.No Cache )
> >
> > But, I can still hit the BACK button and see the page. Ideas?
> >
> > "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote in
> > message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> > > Response.SetCacheability(nocache enum) roughly
> > >
> > > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > > news:e8**************@TK2MSFTNGP10.phx.gbl...
> > > > I know some sites will display the following message if you click
on
> the
> > > > BACK button in your browser. How do I implement this feature?
> > > >
> > > > Warning: Page has Expired The page you requested was created

using > > > > information you submitted in a form. This page is no longer
available.
> > As
> > > a
> > > > security precaution, Internet Explorer does not automatically
resubmit
> > > your
> > > > information for you.
> > > >
> > > > To resubmit your information and view this Web page, click the
Refresh
> > > > button.
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #8
As I stated in my original message I would like my browser to give me a
"Warning: Page has Expired..." message, like it does if you try hitting the
BACK key in a secure website (PayPal.com, etc...)

Robert

"Jerry III" <je******@hotmail.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
That page about resubmitting you're talking about does not come from the
server. It is shown by IE and you will see if when you come back to a page
that got form submitted through POST method to it. If you come back to such a page IE (or any other client for that matter) will not automatically
resubmit the form.

Jerry

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:el**************@tk2msftngp13.phx.gbl...
Thanks.

Tried that also. It didn't work. Any more ideas?

Any links to samples, etc..?

"William F. Robertson, Jr." <wf*********@kpmg.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
I know this does basically one way or another what you are going for, but
it
should force a refresh to the server.

bill

<meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT" />
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache" />
"VB Programmer" <gr*********@go-intech.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl...
> Thanks. I've tried...
>
> Response.Expires=-1
>
> also...
>
> Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
> Response.Cache.SetCacheability(HttpCacheability.No Cache)
>
> It still let's me go "BACK" to the form. Any ideas?
>
> "Dhananjay Modak" <dh*************@newellandbudge.com> wrote in message > news:OZ**************@TK2MSFTNGP11.phx.gbl...
> > could it be caching on a proxy ... in the old asp world we would d o the
> > following:
> >
> > Response.Expires = -1
> >
> > Response.AddHeader "Pragma", "No-Cache"
> >
> > Response.CacheControl = "no-cache"
> >
> >
> >
> > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > news:e9*************@TK2MSFTNGP10.phx.gbl...
> > > Thanks. In the Page_Load even I tried both:
> > >
> > >
> Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
> > > and
> > >

Response.Cache.SetCacheability(HttpCacheability.No Cache ) > > >
> > > But, I can still hit the BACK button and see the page. Ideas?
> > >
> > > "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com >

wrote
> in
> > > message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> > > > Response.SetCacheability(nocache enum) roughly
> > > >
> > > > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > > > news:e8**************@TK2MSFTNGP10.phx.gbl...
> > > > > I know some sites will display the following message if you

click
on
> > the
> > > > > BACK button in your browser. How do I implement this feature? > > > > >
> > > > > Warning: Page has Expired The page you requested was created

using
> > > > > information you submitted in a form. This page is no longer
> available.
> > > As
> > > > a
> > > > > security precaution, Internet Explorer does not automatically > resubmit
> > > > your
> > > > > information for you.
> > > > >
> > > > > To resubmit your information and view this Web page, click the > Refresh
> > > > > button.
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #9


From what I could tell, the expire notice when you press
back is caused by the page submitting form variables. If
you have the page submit a form (along with a couple
variables) to get to the next page, you should receive
the message when you click back.
-----Original Message-----
Thanks. I've tried...

Response.Expires=-1

also...

Response.Cache.SetExpires(DateTime.Now.AddSeconds (0)) Response.Cache.SetCacheability (HttpCacheability.NoCache)
It still let's me go "BACK" to the form. Any ideas?

"Dhananjay Modak" <dh*************@newellandbudge.com> wrote in messagenews:OZ**************@TK2MSFTNGP11.phx.gbl...
could it be caching on a proxy ... in the old asp world we would do the
following:

Response.Expires = -1

Response.AddHeader "Pragma", "No-Cache"

Response.CacheControl = "no-cache"

"VB Programmer" <gr*********@go-intech.com> wrote in message news:e9*************@TK2MSFTNGP10.phx.gbl...
> Thanks. In the Page_Load even I tried both:
>
>Response.Cache.SetCacheability (HttpCacheability.ServerAndNoCache)
> and
> Response.Cache.SetCacheability (HttpCacheability.NoCache ) >
> But, I can still hit the BACK button and see the page. Ideas? >
> "Alvin Bruney" <vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrotein
> message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> > Response.SetCacheability(nocache enum) roughly
> >
> > "VB Programmer" <gr*********@go-intech.com> wrote
in message > > news:e8**************@TK2MSFTNGP10.phx.gbl...
> > > I know some sites will display the following message if you click on the
> > > BACK button in your browser. How do I implement
this feature? > > >
> > > Warning: Page has Expired The page you requested was created using > > > information you submitted in a form. This page

is no longeravailable. > As
> > a
> > > security precaution, Internet Explorer does not
automatically
resubmit > > your
> > > information for you.
> > >
> > > To resubmit your information and view this Web
page, click the
Refresh > > > button.
> > >
> > >
> >
> >
>
>


.

Nov 17 '05 #10
Do you want me to repeat myself? This happens when you submit data to that
page through POST. It has absolutely NOTHING to do with page expiration.

Jerry

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:Od*************@TK2MSFTNGP12.phx.gbl...
As I stated in my original message I would like my browser to give me a
"Warning: Page has Expired..." message, like it does if you try hitting the BACK key in a secure website (PayPal.com, etc...)

Robert

"Jerry III" <je******@hotmail.com> wrote in message
news:Ot*************@TK2MSFTNGP10.phx.gbl...
That page about resubmitting you're talking about does not come from the
server. It is shown by IE and you will see if when you come back to a page
that got form submitted through POST method to it. If you come back to such
a page IE (or any other client for that matter) will not automatically
resubmit the form.

Jerry

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:el**************@tk2msftngp13.phx.gbl...
Thanks.

Tried that also. It didn't work. Any more ideas?

Any links to samples, etc..?

"William F. Robertson, Jr." <wf*********@kpmg.com> wrote in message
news:uF**************@tk2msftngp13.phx.gbl...
> I know this does basically one way or another what you are going for,
but
it
> should force a refresh to the server.
>
> bill
>
> <meta http-equiv="expires" content="Sun, Dec 31 1970 12:00:00 GMT"

/> > <meta http-equiv="cache-control" content="no-cache">
> <meta http-equiv="pragma" content="no-cache" />
>
>
> "VB Programmer" <gr*********@go-intech.com> wrote in message
> news:Om**************@TK2MSFTNGP12.phx.gbl...
> > Thanks. I've tried...
> >
> > Response.Expires=-1
> >
> > also...
> >
> > Response.Cache.SetExpires(DateTime.Now.AddSeconds( 0))
> > Response.Cache.SetCacheability(HttpCacheability.No Cache)
> >
> > It still let's me go "BACK" to the form. Any ideas?
> >
> > "Dhananjay Modak" <dh*************@newellandbudge.com> wrote in

message
> > news:OZ**************@TK2MSFTNGP11.phx.gbl...
> > > could it be caching on a proxy ... in the old asp world we would d o the
> > > following:
> > >
> > > Response.Expires = -1
> > >
> > > Response.AddHeader "Pragma", "No-Cache"
> > >
> > > Response.CacheControl = "no-cache"
> > >
> > >
> > >
> > > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > > news:e9*************@TK2MSFTNGP10.phx.gbl...
> > > > Thanks. In the Page_Load even I tried both:
> > > >
> > > >
> > Response.Cache.SetCacheability(HttpCacheability.Se rverAndNoCache)
> > > > and
> > > > Response.Cache.SetCacheability(HttpCacheability.No Cache ) > > > >
> > > > But, I can still hit the BACK button and see the page. Ideas?
> > > >
> > > > "Alvin Bruney"
<vapordan_spam_me_not@hotmail_no_spamhotmail.com > wrote
> > in
> > > > message news:Oc**************@TK2MSFTNGP12.phx.gbl...
> > > > > Response.SetCacheability(nocache enum) roughly
> > > > >
> > > > > "VB Programmer" <gr*********@go-intech.com> wrote in message
> > > > > news:e8**************@TK2MSFTNGP10.phx.gbl...
> > > > > > I know some sites will display the following message if you click
> on
> > > the
> > > > > > BACK button in your browser. How do I implement this

feature? > > > > > >
> > > > > > Warning: Page has Expired The page you requested was created using
> > > > > > information you submitted in a form. This page is no longer > > available.
> > > > As
> > > > > a
> > > > > > security precaution, Internet Explorer does not automatically > > resubmit
> > > > > your
> > > > > > information for you.
> > > > > >
> > > > > > To resubmit your information and view this Web page, click the > > Refresh
> > > > > > button.
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 17 '05 #11
Like other have said - you ONLY will get this when a FORM is involved on the
page.

--
Michael Tissington
Oaklodge Technologies
http://www.oaklodge.com/technology

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
I know some sites will display the following message if you click on the
BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.

To resubmit your information and view this Web page, click the Refresh
button.

Nov 17 '05 #12
This is a form (ASP.NET webform). Is this what you mean? Sorry, ASP.NET /
web development is new to me.

"Michael Tissington" <mi*****@nospam.com> wrote in message
news:e0**************@TK2MSFTNGP11.phx.gbl...
Like other have said - you ONLY will get this when a FORM is involved on the page.

--
Michael Tissington
Oaklodge Technologies
http://www.oaklodge.com/technology

"VB Programmer" <gr*********@go-intech.com> wrote in message
news:e8**************@TK2MSFTNGP10.phx.gbl...
I know some sites will display the following message if you click on the
BACK button in your browser. How do I implement this feature?

Warning: Page has Expired The page you requested was created using
information you submitted in a form. This page is no longer available.
As a
security precaution, Internet Explorer does not automatically resubmit

your
information for you.

To resubmit your information and view this Web page, click the Refresh
button.


Nov 17 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: John | last post by:
I have read somewhere else in this newsgroup that the way to avoid the message (Warning: Page has Expired blah, blah blah ... ) when one presses the back button is to place the statement...
2
by: Saverio Tedeschi | last post by:
Hi all gurus, I've found no article about my question. Is it possible from ASP.NET to call a page without the buttons to move back and forward?
4
by: Nicolás Castagnet | last post by:
Hi, I write this post because I notice a strange behavior related with "Temporary Internet Files" and maybe some of you can help me to understand it. I am working in a web application with...
5
by: jensen bredal | last post by:
I need to keep track on user "session data" while still turning session off as i do not want users login to expire? Thanks JB
10
by: kpg | last post by:
Hi all, easy question: How can I make a page expire immediately? I don't want the user to be able to re-visit it. Tried <% response.expires = 0 %>, did not work. Don't understand how to...
3
by: Shimon Sim | last post by:
Hi Is it possible to make sure that the page doesn't show in browser history and won't effect Back button. The problem is that every postback shows as another entry for "Back" button and user...
23
by: Phil Powell | last post by:
// OBTAINED FROM http://www.javascripter.net/faq/settinga.htm // NOTE THAT IF YOU SET days TO -1 THE COOKIE WILL BE SET TO YESTERDAY AND THUS EXPIRE function setCookie(name, value, days, docObj)...
3
by: peter | last post by:
Hi: I'm not sure how to control the following behavior.. Sequence of events are working properly #4 is the problem: 1] User enters invalid data in a textbox and click submit 2] Server side...
0
by: Summercool | last post by:
right now i have a script that will add to the DOM tree of a form... adding the hidden input values as children... it works well except when i click "BACK", Firefox doesn't remove those objects......
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.